home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM11.FTP < prev    next >
Text File  |  1997-11-28  |  527b  |  16 lines

  1. // Example #11:  Download a file from a ftp site with
  2. // showing the progress.   The socket mode by open in
  3. // asynchronous mode by setting the socket option in
  4. // the iftp.ini file before the Progress Command will
  5. // work.   Note:  While showing a progress is useful,
  6. // it is extra overhead and technically, there is a
  7. // slight file transfer performance hit because of
  8. // extra processing taking place.
  9. //
  10.  
  11.     open mailhub
  12.     if not success then abort
  13.     progress on
  14.     copy ftp:/usenet/*.* \iftp\import
  15.  
  16.